Oversharing On Setup ^^^^^ **Definition:** * Where every test sets up a lot of shared data which only some tests need. **Code Example:** .. code-block:: javascript beforeEach(() => { databaseConnection = openDatabase(); inputFile = loadBigFile(); userList = loadUserList(); imageData = loadImageBytes(); }); **References:** .. admonition:: Quality attributes * :octicon:`file-code;1em` - Code Example * :octicon:`comment-discussion;1em` - Cause and Effect * :octicon:`graph;1em` - Frequency * :octicon:`sync;1em` - Refactoring * `Test Smells - The Coding Craftsman `_ :octicon:`file-code;1em`